home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl151s.zip / INCLUDE / UTYPE.H < prev   
C/C++ Source or Header  |  1996-01-15  |  293b  |  14 lines

  1. #ifndef _UTYPE_H_
  2. #define _UTYPE_H_
  3.  
  4. #define TRUE 1
  5. #define FALSE 0
  6. #define ABS(x)  ((x) < 0 ? -(x) : (x))
  7. typedef unsigned int uint;
  8. typedef unsigned char BYTE;
  9. typedef BYTE uchar;
  10. typedef uint BOOL;
  11. typedef unsigned short ushort;
  12. typedef uint (* FUNC)();
  13.  
  14. #endif /* _UTYPE_H_ */